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
|
||||
|
||||
# INSTALL BASE DEPENDENCIES
|
||||
RUN apk add --update --no-cache \
|
||||
bash libcap tzdata curl
|
||||
RUN --mount=type=cache,target=/var/cache/apk \
|
||||
apk add --update \
|
||||
libcap tzdata curl
|
||||
|
||||
# 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