Set the application to run on 5000 instead of 3000

This commit is contained in:
Dave Smith-Hayes 2024-08-08 22:52:12 -04:00
parent 19776ca105
commit c316c046db

View File

@ -11,6 +11,6 @@ COPY ./src ./src
COPY ./posts ./posts
USER bun
EXPOSE 3000
EXPOSE 5000
CMD [ "bun", "src/index.tsx" ]