-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (21 loc) · 716 Bytes
/
Dockerfile
File metadata and controls
27 lines (21 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM python:3.9-bullseye
RUN pip install --upgrade pip && \
pip install pandas \
requests \
boto3 \
beautifulsoup4 \
pyarrow \
python-dotenv \
PyYAML \
--trusted-host pypi.python.org \
dash \
pytest --target=/usr/local/lib/python3.9/dist-packages && \
export PATH=$PATH:/usr/local/lib/python3.9/dist-packages
RUN mkdir -p /workspaces/app/
COPY /src /workspaces/app
WORKDIR /workspaces/app
ENV PYTHONPATH=/usr/local/lib/python3.9/dist-packages
EXPOSE 8888
# ENV PYTHONPATH=/usr/local/bin/python
# CMD ["python"]
# first test for CI