Use alpine python base image to get smaller image.
This commit is contained in:
parent
67cd8b4e37
commit
1ce129f030
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
||||||
FROM python:3
|
FROM python:3-alpine
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
RUN curl https://raw.githubusercontent.com/christgau/wsdd/master/src/wsdd.py -o wsdd.py
|
RUN apk add --no-cache curl bash && curl https://raw.githubusercontent.com/christgau/wsdd/master/src/wsdd.py -o wsdd.py && apk del curl
|
||||||
|
|
||||||
copy docker-cmd.sh .
|
copy docker-cmd.sh .
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue