Removing bash

This commit is contained in:
Aditya Prima 2024-09-11 19:26:39 +07:00
parent 52122134ac
commit 8b526a7eba
1 changed files with 7 additions and 3 deletions

View File

@ -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/*