Skip to content

Commit 6506028

Browse files
committed
fixing quotes in .stage.env
1 parent 59dbb51 commit 6506028

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.stage.env

4 Bytes
Binary file not shown.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.2
22

3-
FROM node:14 AS building
3+
FROM node:14-alpine AS building
44
WORKDIR /app
55
# ENV USERNAME timetracker
66
# ENV HOME /home/${USERNAME}
@@ -13,7 +13,7 @@ COPY . /app
1313
RUN npm cache clean --force && npm install
1414
EXPOSE 4200
1515
EXPOSE 9876
16-
RUN --mount=type=secret,id=mysecret,dst=/foobar eval '$(echo $(cat /foobar))' && npm run build
16+
RUN --mount=type=secret,id=mysecret,dst=/foobar source /foobar && npm run build
1717
# >> scrt &&
1818
#
1919

0 commit comments

Comments
 (0)