aws/Dockerfile

5 lines
93 B
Docker
Raw Permalink Normal View History

2024-12-16 00:40:14 +01:00
FROM ubuntu
COPY ./webservice /
RUN chmod +x ./webservice
EXPOSE 80:8080/tcp
CMD ./webservice