-
Notifications
You must be signed in to change notification settings - Fork 62
/
Dockerfile
49 lines (38 loc) · 1.48 KB
/
Dockerfile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Base image to start with
FROM ubuntu:20.04
# Who maintains this DockerFile
MAINTAINER Bart Cox <[email protected]>
# Run build without interactive dialogue
ARG DEBIAN_FRONTEND=noninteractive
ENV GLOO_SOCKET_IFNAME=eth0
ENV TP_SOCKET_IFNAME=eth0
# Define the working directory of the current Docker container
WORKDIR /opt/federation-lab
# Update the Ubuntu software repository
RUN apt-get update \
&& apt-get install -y vim curl python3 python3-pip net-tools iproute2
# Copy the current folder to the working directory
COPY setup.py ./
COPY requirements.txt ./
#COPY fltk ./fltk
#COPY configs ./configs
# Install all required packages for the generator
RUN python3 -m pip install -r requirements.txt
#RUN mkdir -p ./data/MNIST
#COPY ./data/MNIST ../data/MNIST
#ADD fltk ./fedsim
#RUN ls -la
#COPY federated_learning.py ./
#COPY custom_mnist.py ./
#RUN ls -la ./fedsim
# Expose the container's port to the host OS
EXPOSE 5000
# Run command by default for the executing container
# CMD ["python3", "/opt/Generatrix/rpc_parameter_server.py", "--world_size=2", "--rank=0", "--master_addr=192.168.144.2"]
#CMD python3 /opt/federation-lab/rpc_parameter_server.py --world_size=$WORLD_SIZE --rank=$RANK --master_addr=10.5.0.11
#CMD python3 /opt/federation-lab/federated_learning.py $RANK $WORLD_SIZE 10.5.0.11
COPY fltk ./fltk
COPY configs ./configs
#CMD python3 ./fltk/__main__.py single configs/experiment.yaml --rank=$RANK
CMD python3 -m fltk single configs/experiment.yaml --rank=$RANK
#CMD python3 setup.py