AWS/Dockerfile

5 lines
93 B
Docker

FROM ubuntu
COPY ./webservice /
RUN chmod +x ./webservice
EXPOSE 80:8080/tcp
CMD ./webservice