add EXPOSE statement to Dockerfile to indicate the port
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aaron Riedel 2024-02-02 11:02:21 +01:00
parent b4061fc1ac
commit a319e9f878
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -12,3 +12,4 @@ COPY --from=build /app/build /app
COPY data /app/data
COPY nginx.conf /etc/nginx/nginx.conf
HEALTHCHECK CMD curl -fsS -m 10 -o /dev/null http://localhost:8080
EXPOSE 8080/tcp