This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
short-link-backend/dockerfile
2024-10-22 20:08:02 +02:00

9 lines
No EOL
159 B
Text

FROM ubuntu:20.04
ENV APPLICATION_BINARY="Application"
ENV OPEN_PORT=8080
COPY ${APPLICATION_BINARY} .
EXPOSE ${OPEN_PORT}
CMD [ "./${APPLICATION_BINARY}" ]