Create file-store directory in backend container (#139)
taylor_socfortress committed
Feb 9, 2024 at 13:34 UTC
e9743ced690732f9b43095948b6045715114703d
1 file changed
+2
backend/Dockerfile
+2
@@ -44,6 +44,8 @@ RUN /opt/venv/bin/pip install --no-cache-dir -r requirements.txt
44
# Copy your application into the Docker image
45
WORKDIR /opt/copilot/backend
46
COPY . .
47
+# Create file-store folder
48
+RUN mkdir file-store
49
50
# Expose ports
51
EXPOSE 5000