Merge pull request #69 from hay-kot/docker/expose-port

Expose port 8080 in dockerfile
This commit is contained in:
Dániel Szabó 2022-10-22 20:49:44 +03:00 committed by GitHub
commit 52d87652ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,4 +30,7 @@ COPY --from=build \
/app/target/release/microbin \
/usr/bin/microbin
# Expose webport used for the webserver to the docker runtime
EXPOSE 8080
ENTRYPOINT ["microbin"]