We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9070a0a commit b50e009Copy full SHA for b50e009
.github/workflows/main.yml
@@ -33,7 +33,7 @@ jobs:
33
context: .
34
dockerfile: Dockerfile
35
push: true
36
- platforms: linux/amd64
+ platforms: linux/amd64,linux/arm64
37
tags: ghcr.io/${{ github.repository }}/${{ secrets.DOCKER_CONTAINER_NAME }}:v1.0.0
38
cache-from: type=gha
39
cache-to: type=gha,mode=max
Dockerfile
@@ -21,7 +21,7 @@ WORKDIR /root/
21
22
COPY --from=builder /app/cmd/main .
23
24
-RUN mkdir -p db
+RUN mkdir -p db && chmod 777 db
25
26
EXPOSE 8080
27
0 commit comments