Skip to content

Commit 14d4e87

Browse files
authored
Merge pull request #38 from satyendradhaka/fix/fix_dockerfile
fix: fix dependency and environment variable in Dockerfile
2 parents 91bca0a + 09060d6 commit 14d4e87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ RUN apk add --update build-base git nodejs nodejs-npm ca-certificates && \
66
WORKDIR /src
77

88
COPY . ./
9+
RUN npm install webpack
910

1011
RUN make clean build-release && \
1112
git clone https://github.com/grafana/grafonnet-lib.git dist/grafonnet-lib && \
@@ -24,7 +25,7 @@ COPY --from=bob /src/public /app/public
2425

2526
COPY --from=bob /src/out/grafonnet-playground /app
2627

27-
ENV GRAFONNET_LIB_DIRS=/app/dist/grafonnet-lib /app/dist/grafonnet-bigquery-panel
28+
ENV GRAFONNET_LIB_DIRS='/app/dist/grafonnet-lib /app/dist/grafonnet-bigquery-panel'
2829

2930
CMD ["./grafonnet-playground"]
3031

0 commit comments

Comments
 (0)