Guest User

Untitled

a guest
Jan 21st, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. FROM ubuntu:18.04
  2. # alter the value of TZ to fit your needs
  3. ENV TZ=America/Sao_Paulo
  4. ENV DEBIAN_FRONTEND=noninteractive
  5. RUN apt-get update \
  6. && apt-get install -y tzdata \
  7. && ln -fs /usr/share/zoneinfo/$TZ /etc/localtime \
  8. && dpkg-reconfigure --frontend noninteractive tzdata
Add Comment
Please, Sign In to add comment