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.
2 parents bfb1222 + 2fb15ea commit 75899d3Copy full SHA for 75899d3
.github/workflows/deploy.yml
@@ -38,8 +38,8 @@ jobs:
38
run: |
39
docker buildx build --cache-from=type=local,src=/tmp/.buildx-cache \
40
--cache-to=type=local,dest=/tmp/.buildx-cache \
41
+ --push \
42
-t ${{ secrets.DOCKERHUB_USERNAME}}/rhythm-up:latest .
- docker push ${{ secrets.DOCKERHUB_USERNAME}}/rhythm-up:latest
43
44
- name: Deploy to Server with Docker Compose
45
uses: appleboy/ssh-action@master
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:20.16-alpine3.19 as builder
+FROM node:20.16-alpine3.19 AS builder
2
3
WORKDIR /builder
4
@@ -10,7 +10,7 @@ COPY . .
10
11
RUN yarn build
12
13
-FROM node:20.16-alpine3.19 as production
+FROM node:20.16-alpine3.19 AS production
14
15
WORKDIR /app
16
0 commit comments