We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9443ba commit bab8182Copy full SHA for bab8182
Dockerfile
@@ -1,7 +1,7 @@
1
#!/bin/echo docker build . -f
2
# -*- coding: utf-8 -*-
3
4
-FROM ubuntu:22.04
+FROM debian:12
5
6
ENV DEBIAN_FRONTEND noninteractive
7
ENV LC_ALL en_US.UTF-8
@@ -14,6 +14,7 @@ RUN echo "# log: Configuring locales" \
14
&& echo "${LC_ALL} UTF-8" | tee /etc/locale.gen \
15
&& locale-gen ${LC_ALL} \
16
&& dpkg-reconfigure locales \
17
+ && TZ=Etc/UTC apt-get -y install tzdata \
18
&& date
19
20
ENV project UnifySDK
@@ -25,7 +26,7 @@ WORKDIR ${workdir}
25
26
RUN echo "# log: Setup system" \
27
&& set -x \
28
&& apt-get install -y make sudo \
- && ./helper.mk setup/debian git setup \
29
+ && ./helper.mk setup/debian setup \
30
31
32
RUN echo "# log: Build" \
0 commit comments