FROM arm64v8/python:3.6.8-stretch MAINTAINER 2du MAINTAINER hoparkgo9ma ENV NAMU_DB=data ENV NAMU_HOST=0.0.0.0 ENV NAMU_PORT=3000 ENV NAMU_LANG=en-US ADD . /app WORKDIR /app RUN pip install -r requirements.txt EXPOSE 3000 CMD [ "python", "./app.py" ]