From 270d9f7296e5ca0eb2e757fa6b60edea115af1ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sat, 7 Jan 2023 21:58:22 +0100 Subject: [PATCH] Ignore static folder when building container --- .dockerignore | 1 + Dockerfile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..601036a --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +src/web/static/* \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 5838e0e..c3fdea6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,11 @@ RUN npm install && \ FROM python:3.10.9-alpine -ENV VERSION_NUMBER 0.1.1-3-gd029fda +ENV VERSION_NUMBER 0.1.1-4-g2939b4a ENV PROD 1 RUN apk add \ + bash \ vim \ curl \ caddy