Skip to content

Commit bd450f6

Browse files
committed
fix(Dockerfile): correct issues with commands and paths
1 parent 9c42efd commit bd450f6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

deployment/docker/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
FROM alpine:latest
22

3-
COPY void /usr/bin/void
3+
RUN mkdir /etc/void
4+
5+
COPY void /bin/void
6+
RUN chmod +x /bin/void
7+
48
COPY deployment/config/config.yaml /etc/void/config.yaml
59

6-
ENTRYPOINT [ "/usr/bin/void" ]
10+
ENTRYPOINT [ "/bin/void" ]

0 commit comments

Comments
 (0)