mingzailao-torch/Dockerfile

16 lines
263 B
Docker
Raw Normal View History

2023-11-19 14:22:44 +08:00
FROM pytorch/pytorch:1.6.0-cuda10.1-cudnn7-devel
2023-03-13 19:56:38 +08:00
2023-11-19 14:22:44 +08:00
# encoding
RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
RUN echo "LANG=en_US.UTF-8" > /etc/locale.conf
# fix (tzdata)
ARG DEBIAN_FRONTEND=noninteractive
2023-03-13 19:56:38 +08:00