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 f0c038c commit 1ec3df3Copy full SHA for 1ec3df3
.github/workflows/deploy-image.yml
@@ -35,8 +35,12 @@ jobs:
35
username: ${{ github.actor }}
36
password: ${{ secrets.GITHUB_TOKEN }}
37
38
- - name: Docker build
39
- run: docker build -t ${{ env.IMAGE_NAME }} .
+ - name: Build and push Docker image
+ uses: docker/build-push-action@e551b19e49efd4e98792db7592c17c09b89db8d8 # v3.0.0
40
+ with:
41
+ context: .
42
+ push: false
43
+ tags: ${{ env.IMAGE_NAME }}
44
45
- run: npx semantic-release
46
env:
Dockerfile
@@ -3,6 +3,7 @@ RUN apt-get update && apt-get install -y curl gzip
3
WORKDIR /app
4
5
COPY package.json ./
6
+COPY prisma/ prisma/
7
RUN yarn install
8
9
RUN curl -L -o elm.gz https://github.com/elm/compiler/releases/download/0.19.1/binary-for-linux-64-bit.gz && \
0 commit comments