data-proxy-api / Dockerfile
Hansimov's picture
:boom: [Fix] incorrect command for running api
1fd9eef
raw
history blame
220 Bytes
FROM python:3.11-slim
WORKDIR $HOME/app
COPY requirements.txt $HOME/app
RUN mkdir /.cache && chmod 777 /.cache
RUN pip install -r requirements.txt
COPY . $HOME/app
EXPOSE 22001
CMD ["python", "-m", "apis.data_proxy_api"]