awk / Dockerfile
Zhofang's picture
Rename Dockerfile (1).txt to Dockerfile
c84637f verified
raw
history blame
429 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN pip uninstall numpy -y
RUN pip install jq
RUN apt update && apt upgrade -y
RUN apt install netcat-traditional
RUN apt install bc
RUN apt install nodejs -y
RUN pip install numpy==1.26.4
COPY . .
EXPOSE 7860
CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]