1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-01-03 14:29:14 +01:00

Adding port expose to dockerfile

If you want to use a dockerized nginx the dockerfile has to have an expose command or no ports get exposed.
This commit is contained in:
bradmurray 2022-12-27 02:07:31 +00:00
parent 22b63a3415
commit d96372b08a

View File

@ -12,4 +12,6 @@ COPY config.js.template ./config.js
RUN find ./static/ -type d -exec chmod -R 777 {} \;
EXPOSE 8080
CMD npm start