Skip to content

Commit 24aa4e4

Browse files
authored
Update test.yml
1 parent e891633 commit 24aa4e4

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,19 @@ jobs:
2828
- uses: actions/checkout@v3
2929

3030
# Docker build or pull needs CA fixup?
31-
- run: docker build --rm --tag elixir_boilerplate:latest .
31+
- run: |
32+
echo '
33+
FROM node:18.16-bookworm-slim AS npm-builder
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/*_*
40+
41+
COPY LICENSE /
42+
CMD ["cat LICENSE"]' > ./Dockerfile
43+
docker build --rm --tag elixir_boilerplate:latest .
3244

3345
- run: |
3446
docker pull hello-world

0 commit comments

Comments
 (0)