File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -29,17 +29,18 @@ jobs:
29
29
30
30
# Docker build or pull needs CA fixup?
31
31
- run : |
32
- echo '
33
- FROM node:18.16-bookworm-slim AS npm-builder
32
+ cat <<EOF > Dockerfile
33
+ FROM node:18.16-bookworm-slim AS npm-builder
34
34
35
- # Install Debian dependencies
36
- RUN apt-get update -y && \
37
- apt-get install -y build-essential git && \
38
- apt-get clean && \
39
- rm -f /var/lib/apt/lists/*_*
35
+ # Install Debian dependencies
36
+ RUN apt-get update -y && \
37
+ apt-get install -y build-essential git && \
38
+ apt-get clean && \
39
+ rm -f /var/lib/apt/lists/*_*
40
40
41
- COPY LICENSE /
42
- CMD ["cat LICENSE"]' > ./Dockerfile
41
+ COPY LICENSE /
42
+ CMD ["cat LICENSE"]
43
+ EOF
43
44
docker build --rm --tag elixir_boilerplate:latest .
44
45
45
46
- run : |
You can’t perform that action at this time.
0 commit comments