FROM perl:5 WORKDIR /usr/src/app RUN cpanm HTTP::Server::Simple COPY server.pl . EXPOSE 8080 CMD ["perl", "./server.pl"]