mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 12:06:04 +00:00
8 lines
218 B
Docker
8 lines
218 B
Docker
|
ARG PYTHON_VERSION
|
||
|
FROM python:${PYTHON_VERSION}
|
||
|
RUN apt-get update -y
|
||
|
RUN apt-get install -yy --no-install-recommends --no-install-suggests fish tcsh zsh
|
||
|
RUN pip install --upgrade pip
|
||
|
COPY . /src
|
||
|
RUN pip install /src
|