Skip to content

Update MAINTAINER → LABEL; fix a typo #67

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Read the Docs - Environment base
FROM ubuntu:18.04
MAINTAINER Read the Docs <[email protected]>
LABEL maintainer="Read the Docs <[email protected]>"
LABEL version="4.0.0rc1"

ENV DEBIAN_FRONTEND noninteractive
ENV APPDIR /app
ENV LANG C.UTF-8

# Versions, and expose labels for exernal usage
# Versions, and expose labels for external usage
ENV PYTHON_VERSION_27 2.7.14
ENV PYTHON_VERSION_35 3.5.5
ENV PYTHON_VERSION_36 3.6.4
Expand Down Expand Up @@ -77,9 +77,9 @@ RUN pyenv install $PYTHON_VERSION_27 && \
pyenv install $PYTHON_VERSION_36 && \
pyenv install $PYTHON_VERSION_35 && \
pyenv global \
$PYTHON_VERSION_27 \
$PYTHON_VERSION_36 \
$PYTHON_VERSION_35
$PYTHON_VERSION_27 \
$PYTHON_VERSION_36 \
$PYTHON_VERSION_35
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we want to keep this indentation.


WORKDIR /tmp

Expand Down