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 854dbda commit 37ea692Copy full SHA for 37ea692
epicshop/Dockerfile
@@ -2,7 +2,7 @@ FROM node:24-bookworm-slim as base
2
3
RUN apt-get update && apt-get install -y git
4
5
-ENV EPICSHOP_REPO=https://github.com/epicweb-dev/react-fundamentals
+ENV EPICSHOP_GITHUB_REPO=https://github.com/epicweb-dev/react-fundamentals
6
ENV EPICSHOP_CONTEXT_CWD="/myapp/workshop-content"
7
ENV EPICSHOP_DEPLOYED="true"
8
ENV EPICSHOP_DISABLE_WATCHER="true"
@@ -13,7 +13,7 @@ ENV NODE_ENV="production"
13
WORKDIR /myapp
14
15
# Clone the workshop repo during build time, excluding database files
16
-RUN git clone --depth 1 ${EPICSHOP_REPO} ${EPICSHOP_CONTEXT_CWD}
+RUN git clone --depth 1 ${EPICSHOP_GITHUB_REPO} ${EPICSHOP_CONTEXT_CWD}
17
18
ADD . .
19
0 commit comments