You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
# Copyright 2020 The Pigweed Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
# use this file except in compliance with the License. You may obtain a copy of
|
|
# the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations under
|
|
# the License.
|
|
|
|
FROM ubuntu:19.10
|
|
RUN apt-get update &&\
|
|
apt-get install -y \
|
|
libc6-dev \
|
|
python \
|
|
git
|
|
|
|
ENV CIPD_CACHE_DIR /pigweed-cache/cipd-cache-dir
|
|
# This is only for seeding the environment, not meant to be used. Running
|
|
# bootstrap inside another checkout will reset PW_ROOT but leave
|
|
# PW_ENVIRONMENT_ROOT alone.
|
|
ENV PW_ROOT /cache/pigweed
|
|
ENV PW_ENVIRONMENT_ROOT /cache/environment
|
|
ENV PW_CIPD_PACKAGE_FILES "$PW_ROOT/pw_env_setup/py/pw_env_setup/cipd_setup/*.json"
|
|
|
|
WORKDIR $PW_ROOT
|
|
# env_setup requires .git for determining top-level directory with git rev-parse
|
|
ENV EMAIL "docker-build <>"
|
|
RUN git init
|
|
RUN git commit --allow-empty --allow-empty-message -m ''
|
|
COPY pw_env_setup/ $PW_ROOT/pw_env_setup/
|
|
# --shell-file is required, but we're going to ignore it.
|
|
RUN $PW_ROOT/pw_env_setup/py/pw_env_setup/env_setup.py \
|
|
--shell-file $PW_ROOT/init.sh \
|
|
--pw-root $PW_ROOT \
|
|
--install-dir $PW_ENVIRONMENT_ROOT
|
|
|
|
CMD /bin/bash
|