Skip to content

Commit

Permalink
Debug Issue #1
Browse files Browse the repository at this point in the history
  • Loading branch information
asasvirtuais authored Jul 29, 2024
1 parent 2c5cbb1 commit 8e49702
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
LABEL fly_launch_runtime='node'

ENV NODE_ENV='production'

FROM node:lts-slim as base

WORKDIR /app

ENV NODE_ENV='production'

COPY --link . .

RUN npm install --frozen-lockfile

# FROM base as build
FROM base as build

RUN npm run build

# FROM base
FROM base

# COPY --from=build /app/dist /app/dist
COPY --from=build /app/dist /app/dist

EXPOSE 3000

Expand Down

0 comments on commit 8e49702

Please sign in to comment.