diff options
fix: we use a containerfile in this household
-rw-r--r-- | Containerfile (renamed from Dockerfile) | 2 | ||||
-rw-r--r-- | compose.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Containerfile index 7e0d7b0..4e88152 100644 --- a/Dockerfile +++ b/Containerfile @@ -2,7 +2,7 @@ FROM docker.io/alpine:latest AS base WORKDIR /root -# Packages we'll keep +# Funny lil packages RUN apk upgrade --no-cache && \ apk add --no-cache \ git openssh \ diff --git a/compose.yml b/compose.yml index a60b686..d5996f5 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,7 @@ services: image: docker.io/memdmp/cgit:local-build build: context: . - dockerfile: ./Dockerfile + dockerfile: ./Containerfile volumes: - cgit_ssh:/etc/ssh:rw - ./cgit/repos:/var/lib/git:rw |