Skip to content

Commit

Permalink
version endpoint dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvicenti committed Dec 10, 2024
1 parent e36cda1 commit 9b530e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/apps/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ WORKDIR /app
RUN apk add --no-cache libc6-compat
COPY . .

RUN echo "$COMMIT_HASH" > COMMIT_HASH
RUN echo "$BRANCH" > BRANCH
RUN echo "$DATE" > DATE
RUN echo "1" > IS_BUILD
RUN echo "$COMMIT_HASH" > /app/COMMIT_HASH
RUN echo "$BRANCH" > /app/BRANCH
RUN echo "$DATE" > /app/DATE
RUN echo "1" > /app/IS_BUILD

ENV NODE_ENV production
RUN rm -rf ./frontend/apps/desktop
Expand Down

0 comments on commit 9b530e6

Please sign in to comment.