first dockerfile

This commit is contained in:
2026-05-18 15:35:24 +00:00
parent 1b5242781b
commit e0b43af151
3 changed files with 10 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM perl:5
WORKDIR /usr/src/app
RUN cpanm HTTP::Server::Simple
COPY server.pl .
EXPOSE 8080
CMD ["perl", "./server.pl"]