Directory updates

This commit is contained in:
Adam Toy 2021-01-31 12:54:33 -05:00
parent 73989a322c
commit 8b54acf9bb
4 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ jobs:
# Build: Build the Docker image with a temporary tag.
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME
run: docker build ./build --file Dockerfile --tag $IMAGE_NAME
# Login: Log into Docker Hub using Github secrets.
- name: Log into Docker

View file

@ -10,6 +10,6 @@ COPY requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt && \
rm -f /tmp/requirements.txt
COPY app.py /opt/app.py
COPY src/app.py /opt/app.py
CMD [ '/usr/bin/python3', '/opt/app.py' ]