-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
35 lines (24 loc) · 766 Bytes
/
Copy pathDockerfile
File metadata and controls
35 lines (24 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM alpine:latest as europe
# ADD MADRID TIMEZONE
RUN apk --update add tzdata \
&& rm -rf /var/lib/apt/lists/* \
&& rm /var/cache/apk/*
RUN cp /usr/share/zoneinfo/Europe/Madrid /etc/localtime \
&& echo "Europe/Madrid" > /etc/timezone
COPY . .
# --- # --- #
FROM alpine:latest as africa
# ADD MADRID TIMEZONE
RUN apk --update add tzdata git\
&& rm -rf /var/lib/apt/lists/* \
&& rm /var/cache/apk/*
RUN cp /usr/share/zoneinfo/Africa/Cairo /etc/localtime \
&& echo "Africa/Cairo" > /etc/timezone
# --- # --- #
FROM alpine:latest as asia
# ADD MADRID TIMEZONE
RUN apk --update add tzdata git\
&& rm -rf /var/lib/apt/lists/* \
&& rm /var/cache/apk/*
RUN cp /usr/share/zoneinfo/Asia/Pyongyang /etc/localtime \
&& echo "Asia/Pyongyang" > /etc/timezone