Skip to content

Commit

Permalink
[Build] copy correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatGravyBoat committed Aug 22, 2024
1 parent 8bc6724 commit fafb439
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:18.13-alpine
ENV NODE_ENV=production
WORKDIR /
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install nuxi -g
RUN npm install
COPY . .
COPY . ./app
RUN npx nuxi build
CMD ["node", ".output/server/index.mjs"]
LABEL org.opencontainers.image.source=https://github.com/Team-Resourceful/beehive
Expand Down

0 comments on commit fafb439

Please sign in to comment.