-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.server
More file actions
32 lines (29 loc) · 823 Bytes
/
Dockerfile.server
File metadata and controls
32 lines (29 loc) · 823 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
28
29
30
31
32
FROM tensorflow/tensorflow:2.15.0-gpu
#COPY *.ipynb /app/
#COPY *.py /app/
RUN apt update
RUN apt install -y python3
RUN apt install -y python3-dev python3-pip
RUN pip install --upgrade pip
RUN pip install wandb
# RUN pip install jupyterlab
RUN pip install pandas
RUN pip install scipy
# RUN pip install --upgrade tensorflow-federated
RUN pip install flwr
# RUN pip install tensorflow-addons
RUN pip install scikit-learn
RUN pip install matplotlib
# RUN pip install split-folders
# RUN apt-get update
# RUN apt-get install ffmpeg libsm6 libxext6 -y
# RUN pip install opencv-python
# RUN pip install scikit-image
# RUN pip install seaborn
# RUN pip install streamlit
RUN pip install --upgrade attrs
# RUN pip install -U autoalbument
# RUN pip install -U tensorboard
EXPOSE 8080
WORKDIR /app
CMD ["python3", "server.py"]