-
Notifications
You must be signed in to change notification settings - Fork 118
/
Dockerfile
44 lines (36 loc) · 1.18 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
# Copyright (c) 2019-2020, RTE (https://www.rte-france.com)
# See AUTHORS.txt
# This Source Code Form is subject to the terms of the Mozilla Public License, version 2.0.
# If a copy of the Mozilla Public License, version 2.0 was not distributed with this file,
# you can obtain one at http://mozilla.org/MPL/2.0/.
# SPDX-License-Identifier: MPL-2.0
# This file is part of Grid2Op, Grid2Op a testbed platform to model sequential decision making in power systems.
# Use an official Python runtime as a parent image
FROM python:3.8-buster
MAINTAINER Benjamin DONNOT <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
ARG ls_version
# generic install
RUN apt-get update && \
apt-get install -y \
less \
apt-transport-https \
build-essential \
git \
ssh \
tar \
gzip
# Retrieve Grid2Op
RUN git clone https://github.com/rte-france/Grid2Op
# Install Grid2Op
WORKDIR /Grid2Op
# Use the latest release
RUN git pull
RUN git remote update
RUN git fetch --all --tags
RUN git checkout "tags/v1.10.5" -b "v1.10.5-branch"
# Install Dependencies
RUN pip3 install .[optional,challenge]
WORKDIR /
# Make port 80 available to the world outside this container
EXPOSE 80