Skip to content

Commit

Permalink
test lagi
Browse files Browse the repository at this point in the history
  • Loading branch information
syafiqparadisam committed Jul 24, 2024
1 parent 88ab69b commit ea463fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ FROM node:20.12-alpine AS build
# Copy source code


RUN --mount=type=secret,id=VITE_TEMPLATE_ID \
RUN --mount=type=secret,id=VITE_TEMPLATE_ID,required=true,mode=0666 \
VITE_TEMPLATE_ID=$(cat /run/secrets/VITE_TEMPLATE_ID)

RUN --mount=type=secret,id=VITE_PUBLIC_KEY \
RUN --mount=type=secret,id=VITE_PUBLIC_KEY,required=true,mode=0666 \
VITE_PUBLIC_KEY=$(cat /run/secrets/VITE_PUBLIC_KEY)

RUN --mount=type=secret,id=VITE_SERVICE_ID \
RUN --mount=type=secret,id=VITE_SERVICE_ID,required=true,mode=0666 \
VITE_SERVICE_ID=$(cat /run/secrets/VITE_SERVICE_ID)

# RUN export VITE_SERVICE_ID=$(cat /run/secrets/VITE_SERVICE_ID) \
Expand Down

0 comments on commit ea463fc

Please sign in to comment.