From 668119c74023e26eb8f101e58977e46e6276add2 Mon Sep 17 00:00:00 2001 From: Dara Keon Date: Thu, 8 Dec 2022 14:52:13 -0300 Subject: [PATCH] docker: move make The build folder had all the scripts, but given this is only a single file now, it can be directly in docker folder --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0b53b22..2b627bc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,23 +25,23 @@ jobs: command: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD - run: name: Build and Push Alpine - path: docker/build + path: docker command: make alpine_push - run: name: Build and Push Ubuntu - path: docker/build + path: docker command: make ubuntu_push - run: name: Build and Push Dockery - path: docker/build + path: docker command: make dockery_push - run: name: Build and Push Netcore - path: docker/build + path: docker command: make netcore_push - run: name: Build and Push Server - path: docker/build + path: docker command: make server_push workflows: