This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
RUN userdel -r ubuntu | |
ENV SE 'Sweden/Stockholm' | |
RUN echo $TZ > /etc/timezone && \ | |
apt-get update && apt-get upgrade -y && \ | |
DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata && \ | |
rm /etc/localtime && \ | |
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ | |
dpkg-reconfigure -f noninteractive tzdata && \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
ENV SE 'Sweden/Stockholm' | |
RUN echo $TZ > /etc/timezone && \ | |
apt-get update && apt-get upgrade -y && \ | |
apt-get install -y tzdata && \ | |
rm /etc/localtime && \ | |
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ | |
dpkg-reconfigure -f noninteractive tzdata && \ | |
apt-get install -y autoconf automake libtool cmake git && \ |