1 Star 0 Fork 0

hhhyuangen/Grid2Op

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
BDonnot 提交于 2020-12-10 16:47 +08:00 . Release v1.4.0
# 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.6-stretch
MAINTAINER Benjamin DONNOT <benjamin.donnot@rte-france.com>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get install -y \
less \
apt-transport-https \
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.4.0" -b "v1.4.0-branch"
# Install Dependencies
RUN pip3 install .[optional,challenge]
WORKDIR /
# Make port 80 available to the world outside this container
EXPOSE 80
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hhhyuangen/Grid2Op.git
git@gitee.com:hhhyuangen/Grid2Op.git
hhhyuangen
Grid2Op
Grid2Op
master

搜索帮助