Skip to content
Discussion options

You must be logged in to vote

I'm not sure what python -m venv .venv is supposed to accomplish with its present placement -- anyway, try the following:

FROM ubuntu:20.04 as base

# set noninteractive installation
RUN mkdir -p /etc/ssl/certs/java/ && \
    export DEBIAN_FRONTEND=noninteractive && \
    apt-get update && \
    apt-get upgrade -y && \
    apt-get install -y \
    tzdata \
    language-pack-en && \
    ln -fs /usr/share/zoneinfo/Europe/London /etc/localtime && \
    dpkg-reconfigure --frontend noninteractive tzdata && \
    update-locale LANG=en_GB.UTF-8 LC_MESSAGES=POSIX


RUN apt-get update && \
    apt-get upgrade -y && \
    apt-get install -y \
    autojump \
    automake \
    bash \
    build-essen…

Replies: 5 comments 5 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@neersighted
Comment options

@drcongo
Comment options

Comment options

You must be logged in to vote
1 reply
@drcongo
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@drcongo
Comment options

@neersighted
Comment options

Answer selected by neersighted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants