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
command: yarn test:e2e
image:
environment:
IMAGE_NAME: grennrich/mastertpci
docker:
- image: circleci/buildpack-deps:stretch
steps:
@ -100,10 +98,10 @@ jobs:
- setup_remote_docker
- run:
name: Build Docker image
command: docker build -t $IMAGE_NAME:app .
command: docker build -t grennrich/mastertpci:app .
- run:
name: Archive Docker image
command: docker save -o image.tar $IMAGE_NAME
command: docker save -o image.tar grennrich/mastertpci
- persist_to_workspace:
root: .
paths:

Loading…
Cancel
Save