We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88bff11 commit e988a8bCopy full SHA for e988a8b
.env.template
@@ -1,4 +1,4 @@
1
GOOGLE_API_KEY="apiKey"
2
FIREBASE_API_KEY="apiKey"
3
STRIPE_API_KEY="apiKey"
4
-FONTAWESOME_PACKAGE_TOKEN="fontawesomePackageToken
+export FONTAWESOME_PACKAGE_TOKEN="fontawesomePackageToken"
Dockerfile.local
@@ -6,10 +6,5 @@ ENV FONTAWESOME_PACKAGE_TOKEN=${FONTAWESOME_PACKAGE_TOKEN}
6
COPY web-app/ /usr/app
7
WORKDIR /usr/app
8
9
-COPY web-app/.npmrc.template .npmrc.template
10
-
11
-RUN set -eux; \
12
- apk add --no-cache gettext; \
13
- envsubst < .npmrc.template > .npmrc; \
14
- npm ci --legacy-peer-deps; \
15
- rm .npmrc
+RUN set -eux \
+ && npm ci
0 commit comments