mirror of
https://github.com/dmlc/dgl.git
synced 2026-06-04 19:44:23 +08:00
21 lines
524 B
Docker
21 lines
524 B
Docker
# Using the Ubuntu image (our OS)
|
|
FROM ubuntu:latest
|
|
# Update package manager (apt-get)
|
|
# and install (with the yes flag `-y`)
|
|
# Python and Pip
|
|
RUN apt-get update && apt-get install -y \
|
|
python3.8 \
|
|
python3-pip
|
|
|
|
RUN apt-get install -y \
|
|
unzip \
|
|
curl \
|
|
&& apt-get clean \
|
|
&& curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
|
|
&& unzip awscliv2.zip \
|
|
&& ./aws/install \
|
|
&& rm -rf \
|
|
awscliv2.zip
|
|
|
|
RUN pip install pytest pytest-html requests
|