tickelton / docker-metatrader

MetaTrader4/5 in a container
ISC License
112 stars 53 forks source link

time zones in which they are located. #8

Closed ulises2k closed 1 year ago

ulises2k commented 1 year ago

Is it possible that I am not left wondering? image

shelomito12 commented 1 year ago
  1. stop/kill the building process
  2. delete this container a) List all containers: docker images -a b) if you are in a test environment and don't care about other containers, then delete all of them with: docker system prune -a

then add ENV DEBIAN_FRONTEND=noninteractive to your Dockerfile:

...
# Base docker image.
FROM ubuntu:focal

ADD https://dl.winehq.org/wine-builds/winehq.key /winehq.key

# Fix time zone issue
ENV DEBIAN_FRONTEND=noninteractive

# Install Wine
...

re-run command: docker build .

tickelton commented 1 year ago

Fix was added to the Dockerfile.