Skip to content

Commit

Permalink
fix(Dockerfile): update the dockerfile to use alpine and put the bin …
Browse files Browse the repository at this point in the history
…and config in the correct directories
  • Loading branch information
benjivesterby committed Apr 18, 2023
1 parent 2ef258d commit 66a432e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions deployment/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM scratch
FROM alpine:latest

COPY void /
COPY deployment/config/config.yaml /
COPY void /usr/bin/void
COPY deployment/config/config.yaml /etc/void/config.yaml

ENTRYPOINT [ "/void" ]
ENTRYPOINT [ "/usr/bin/void" ]
2 changes: 1 addition & 1 deletion deployment/k8s/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: void-container
image: ghcr.io/devnw/void:v0.0.1-beta2
image: ghcr.io/devnw/void:v0.0.1-beta6
ports:
- containerPort: 53
resources:
Expand Down

0 comments on commit 66a432e

Please sign in to comment.