Skip to content
Snippets Groups Projects
Commit 3baf4aae authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

Merge branch 'development-container' into 'master'

Add development container target

See merge request !18
parents 51629b22 7c3b80e1
No related branches found
No related tags found
1 merge request!18Add development container target
Pipeline #20651 passed
---
include:
- project: 'ghsc/hazdev/pipeline-build-template'
ref: 'master'
file: 'templates/library.yml'
image: ${DEVOPS_REGISTRY}usgs/centos:latest
stages:
......@@ -24,11 +30,10 @@ variables:
cache: {}
extends:
- .adjust_image_names
- .dind
- .production
- .staging
image: ${CODE_REGISTRY}/ghsc/hazdev/cloud-formation/hazdev-build-runner:latest
only:
- master@ghsc/geomag/geomag-algorithms
- production@ghsc/geomag/geomag-algorithms
- tags@ghsc/geomag/geomag-algorithms
script:
- docker build
--pull
......@@ -109,10 +114,6 @@ variables:
tags:
- mage01
.staging:
only:
- master@ghsc/geomag/geomag-algorithms
- tags@ghsc/geomag/geomag-algorithms
## --------------------------------------------------
# Test Stage
## --------------------------------------------------
......
ARG FROM_IMAGE=usgs/centos:latest
FROM ${FROM_IMAGE}
FROM ${FROM_IMAGE} as conda
LABEL maintainer="Jeremy Fee <jmfee@usgs.gov>"
ARG GIT_BRANCH_NAME=none
......@@ -35,6 +35,29 @@ RUN conda config --set ssl_verify $SSL_CERT_FILE \
&& yum install -y which \
&& yum clean all
################################################################################
## Development image
# build by running
# docker build -t geomag-algorithms-development --target development .
FROM conda as development
# install dependencies via pipenv
WORKDIR /geomag-algorithms
COPY Pipfile /geomag-algorithms
RUN pipenv --site-packages install --dev --skip-lock
# copy library (ignores set in .dockerignore)
COPY . /geomag-algorithms
################################################################################
## Production image
FROM conda
RUN useradd \
-c 'Docker image user' \
-m \
......
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