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 image: ${DEVOPS_REGISTRY}usgs/centos:latest
stages: stages:
...@@ -24,11 +30,10 @@ variables: ...@@ -24,11 +30,10 @@ variables:
cache: {} cache: {}
extends: extends:
- .adjust_image_names - .adjust_image_names
- .dind
- .production
- .staging
image: ${CODE_REGISTRY}/ghsc/hazdev/cloud-formation/hazdev-build-runner:latest 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: script:
- docker build - docker build
--pull --pull
...@@ -109,10 +114,6 @@ variables: ...@@ -109,10 +114,6 @@ variables:
tags: tags:
- mage01 - mage01
.staging:
only:
- master@ghsc/geomag/geomag-algorithms
- tags@ghsc/geomag/geomag-algorithms
## -------------------------------------------------- ## --------------------------------------------------
# Test Stage # Test Stage
## -------------------------------------------------- ## --------------------------------------------------
......
ARG FROM_IMAGE=usgs/centos:latest ARG FROM_IMAGE=usgs/centos:latest
FROM ${FROM_IMAGE} FROM ${FROM_IMAGE} as conda
LABEL maintainer="Jeremy Fee <jmfee@usgs.gov>" LABEL maintainer="Jeremy Fee <jmfee@usgs.gov>"
ARG GIT_BRANCH_NAME=none ARG GIT_BRANCH_NAME=none
...@@ -35,6 +35,29 @@ RUN conda config --set ssl_verify $SSL_CERT_FILE \ ...@@ -35,6 +35,29 @@ RUN conda config --set ssl_verify $SSL_CERT_FILE \
&& yum install -y which \ && yum install -y which \
&& yum clean all && 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 \ RUN useradd \
-c 'Docker image user' \ -c 'Docker image user' \
-m \ -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