mirror of https://github.com/huashengdun/webssh
Merge pull request #284 from kensonman/alpine
Change the Docker base image from python:3-slim to python:3-alpine.pull/301/head
commit
4aec063197
|
@ -0,0 +1 @@
|
||||||
|
.git
|
16
Dockerfile
16
Dockerfile
|
@ -1,11 +1,17 @@
|
||||||
FROM python:3.7-slim
|
FROM python:3-alpine
|
||||||
|
|
||||||
|
LABEL maintainer='<author>'
|
||||||
|
LABEL version='0.0.0-dev.0-build.0'
|
||||||
|
|
||||||
ADD . /code
|
ADD . /code
|
||||||
WORKDIR /code
|
WORKDIR /code
|
||||||
RUN \
|
RUN \
|
||||||
groupadd -r webssh && \
|
apk add --no-cache libc-dev libffi-dev gcc && \
|
||||||
useradd -r -s /bin/false -g webssh webssh && \
|
pip install -r requirements.txt --no-cache-dir && \
|
||||||
chown -R webssh:webssh /code && \
|
apk del gcc libc-dev libffi-dev && \
|
||||||
pip install -r requirements.txt
|
addgroup webssh && \
|
||||||
|
adduser -Ss /bin/false -g webssh webssh && \
|
||||||
|
chown -R webssh:webssh /code
|
||||||
|
|
||||||
EXPOSE 8888/tcp
|
EXPOSE 8888/tcp
|
||||||
USER webssh
|
USER webssh
|
||||||
|
|
Loading…
Reference in New Issue