Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
Reduce layers of Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
shunyi authored and shunyi committed Sep 17, 2017
1 parent f4a4cb3 commit 4595101
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@ FROM ubuntu:16.04
# Set the locale
RUN apt-get clean && apt-get update && apt-get install -y locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV LANG="en_US.UTF-8" LANGUAGE="en_US:en" LC_ALL="en_US.UTF-8"

# Install Python3 & pip3
RUN apt-get install -y python3
RUN apt-get install -y python3-pip
RUN apt-get install -y python3 python3-pip
RUN pip3 install --upgrade pip

# Install zdict
Expand Down

0 comments on commit 4595101

Please sign in to comment.