Browse Source

Fix: image

main
verzelea 6 years ago
parent
commit
b68256ed82
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -91,8 +91,6 @@ jobs:
name: Launching e2e test name: Launching e2e test
command: yarn test:e2e command: yarn test:e2e
image: image:
environment:
IMAGE_NAME: grennrich/mastertpci
docker: docker:
- image: circleci/buildpack-deps:stretch - image: circleci/buildpack-deps:stretch
steps: steps:
@ -100,10 +98,10 @@ jobs:
- setup_remote_docker - setup_remote_docker
- run: - run:
name: Build Docker image name: Build Docker image
command: docker build -t $IMAGE_NAME:app .
command: docker build -t grennrich/mastertpci:app .
- run: - run:
name: Archive Docker image name: Archive Docker image
command: docker save -o image.tar $IMAGE_NAME
command: docker save -o image.tar grennrich/mastertpci
- persist_to_workspace: - persist_to_workspace:
root: . root: .
paths: paths:

Loading…
Cancel
Save