docker-baseimage-cloud9/Dockerfile.armhf

35 wiersze
612 B
Docker

FROM lsiobase/cloud9:arm32v7-files-alpine as builder
FROM lsiobase/alpine:arm32v7-3.11
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="thelamer"
# add files from c9base
COPY --from=builder /buildout/ /
RUN \
echo "**** install base packages ****" && \
apk add --no-cache \
c-ares \
curl \
git \
gnupg \
http-parser \
libevent \
libevent \
libstdc++ \
libuv \
sudo && \
echo "**** user perms ****" && \
usermod -aG wheel \
abc
# add local files
COPY root/ /
# ports and volumes
EXPOSE 8000