first dockerfile
This commit is contained in:
parent
1b5242781b
commit
e0b43af151
|
|
@ -1,2 +1,5 @@
|
|||
[safe]
|
||||
directory = /home/coder
|
||||
[user]
|
||||
name = Isaac Johnson
|
||||
email = isaac.johnson@gmail.com
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
Loading…
Reference in New Issue