-
Notifications
You must be signed in to change notification settings - Fork 62
/
Dockerfile
36 lines (25 loc) · 1.01 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
FROM ubuntu:20.04
# Who maintains this DockerFile
MAINTAINER Jeroen Galjaard <[email protected]>
# Run build without interactive dialogue
ARG DEBIAN_FRONTEND=noninteractive
# Set environment variables for GLOO and TP (needed for RPC calls)
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 and fetch packages
RUN apt-get update \
&& apt-get install -y vim curl python3 python3-pip net-tools iproute2
# Add Pre-downloaded models (otherwise needs be run every-time)
ADD data/ data/
# Use cache for pip, otherwise we repeatedly pull from repository
ADD setup.py requirements.txt ./
RUN --mount=type=cache,target=/root/.cache/pip python3 -m pip install -r requirements.txt
# Add FLTK and configurations
ADD fltk fltk
ADD configs configs
# Expose default port 5000 to the host OS.
EXPOSE 5000
# Update relevant runtime configuration for experiment
COPY configs/ configs/