export port 8080 in dockerfile

This commit is contained in:
Hayden 2022-09-30 21:11:16 -08:00
parent 3ca89291dc
commit 8223dd4973

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"]