You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
328 B
13 lines
328 B
FROM debian:buster-slim |
|
|
|
RUN mkdir -p /jm/clientserver |
|
WORKDIR /jm/clientserver |
|
|
|
COPY . . |
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates=* curl=* \ |
|
python3-pip=* \ |
|
&& pip3 install 'wheel>=0.35.1' \ |
|
&& ./install.sh --docker-install \ |
|
&& apt-get clean \ |
|
&& rm -rf /var/lib/apt/lists/*
|
|
|