Skip to content

Commit 793233d

Browse files
committed
Remove unwanted dependencies in docker files
1 parent e6881fe commit 793233d

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

thevickypedia/docker/base/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# -----------------------------
44
FROM alpine AS fetcher
55

6-
RUN apk add --no-cache git
76
COPY . /src
87

98
# -----------------------------

thevickypedia/docker/release/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG VERSION
44
ENV VERSION=${VERSION:-latest}
55
ENV INSTALL_PATH="/"
66

7-
RUN apt-get update && apt-get install -y ca-certificates mailcap curl jq git bash tar gzip && \
7+
RUN apt-get update && apt-get install -y ca-certificates curl jq bash tar gzip && \
88
mkdir -p -m 777 /config /data
99

1010
COPY thevickypedia/docker/release/release.sh /release.sh

thevickypedia/docker/release/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG VERSION
44
ENV VERSION=${VERSION:-latest}
55
ENV INSTALL_PATH="/"
66

7-
RUN apk add --no-cache ca-certificates mailcap curl jq git bash tar gzip && \
7+
RUN apk add --no-cache ca-certificates curl jq bash tar gzip && \
88
mkdir -p -m 777 /config /data
99

1010
COPY thevickypedia/docker/release/release.sh /release.sh

0 commit comments

Comments
 (0)