Skip to content

Commit

Permalink
dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
vpedraLZT committed Dec 14, 2023
1 parent 91dc2be commit 8e37280
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
Expand Up @@ -2,8 +2,8 @@ FROM node:18-alpine
RUN mkdir -p /app
WORKDIR /app
COPY . .
ENV NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY = ${secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY}
ENV CLERK_SECRET_KEY = ${secrets.CLERK_SECRET_KEY}
ENV NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY = ${NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY}
ENV CLERK_SECRET_KEY = ${CLERK_SECRET_KEY}
RUN npm install
RUN npm run build
EXPOSE 3000
Expand Down

0 comments on commit 8e37280

Please sign in to comment.