Skip to content

Commit

Permalink
Move Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lksnyder0 committed Oct 9, 2024
1 parent 4bfbd4e commit fa1a7d0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build_elastic_common_schema_toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:
# Tag with short sha when built on default branch
type=sha,enable={{is_default_branch}}
# Setting up Docker Buildx with docker-container driver is required
# Setting up Docker Buildx with docker-container driver is required
# at the moment to be able to use a subdirectory with Git context
- name: Set up Docker Buildx
Expand All @@ -53,7 +52,6 @@ jobs:
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:docker" # Dockerfile is in docker dir
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ubuntu:latest
WORKDIR /ecs
COPY . /ecs
RUN apt update \
&& apt install -y python3-pip \
&& apt clean \
&& python3 -m pip install --break-system-packages -r scripts/requirements.txt
ENTRYPOINT ["/bin/bash", "/ecs/scripts/entry_point.sh"]
6 changes: 0 additions & 6 deletions docker/Dockerfile

This file was deleted.

File renamed without changes.

0 comments on commit fa1a7d0

Please sign in to comment.