Removing bash
This commit is contained in:
parent
52122134ac
commit
8b526a7eba
10
Dockerfile
10
Dockerfile
|
@ -16,8 +16,12 @@ ARG TZ=Asia/Jakarta
|
||||||
USER root
|
USER root
|
||||||
|
|
||||||
# INSTALL BASE DEPENDENCIES
|
# INSTALL BASE DEPENDENCIES
|
||||||
RUN apk add --update --no-cache \
|
RUN --mount=type=cache,target=/var/cache/apk \
|
||||||
bash libcap tzdata curl
|
apk add --update \
|
||||||
|
libcap tzdata curl
|
||||||
|
|
||||||
# SET LOCAL TIMEZONE
|
# SET LOCAL TIMEZONE
|
||||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||||
|
|
||||||
|
# CLEAN APK CACHES
|
||||||
|
RUN rm -vrf /var/cache/apk/*
|
Loading…
Reference in New Issue