Skip to content
Snippets Groups Projects
Commit 79a6c0d3 authored by Carl Boettiger's avatar Carl Boettiger
Browse files

add labels, compact env statement

parent 734b9328
No related branches found
No related tags found
No related merge requests found
FROM debian:jessie
LABEL org.label-schema.license="GPL-2.0" \
org.label-schema.vcs-url="https://github.com/rocker-org/rocker-versioned" \
org.label-schema.vendor="Rocker Project" \
maintainer="Carl Boettiger <cboettig@ropensci.org>"
ARG R_VERSION
ARG BUILD_DATE
ENV R_VERSION ${R_VERSION:-3.4.0}
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
ENV TERM xterm
ENV R_VERSION=${R_VERSION:-3.4.0} \
LC_ALL=en_US.UTF-8 \
LANG=en_US.UTF-8 \
TERM=xterm
## dependencies
RUN apt-get update \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment