Forgot to add that step!

This commit is contained in:
cirroskais 2024-03-18 06:01:25 -04:00
parent 09ef5a89c8
commit aadbac7229
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D

View file

@ -11,7 +11,8 @@ RUN yarn build
FROM base AS app
COPY --from=build /usr/src/app/build/* .
COPY --from=build /usr/src/app/package.json .
COPY --from=build /usr/src/app/build/* ./
EXPOSE 3000/tcp
ENTRYPOINT [ "node", "index.js" ]