浏览代码

test: use python:3-alpine as base for the web image

Nicolas Duchon 1 年之前
父节点
当前提交
1b97b11173
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      test/requirements/web/Dockerfile

+ 2 - 1
test/requirements/web/Dockerfile

@@ -1,6 +1,7 @@
 # Docker Image running one (or multiple) webservers listening on all given ports from WEB_PORTS environment variable
 
-FROM python:3
+FROM python:3-alpine
+RUN apk add --no-cache bash
 COPY ./webserver.py /
 COPY ./entrypoint.sh /
 WORKDIR /opt