inventory / flutter-frontend / Dockerfile.development
Dockerfile.development
Raw
FROM python:3.9.5-slim-buster
LABEL maintainer="mykyta.nehrych@sebn.com"
WORKDIR /sebn-inventory/flutter-frontend
COPY /flutter-frontend/web/ ./web/
COPY /flutter-frontend/server.sh .
RUN echo $(ls)
RUN ["chmod", "+x", "./server.sh"]
ENTRYPOINT [ "./server.sh" ]