This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,413 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
FROM python:3.8.2-slim | ||
ADD . /code | ||
WORKDIR /code | ||
FROM python:3.8.2-buster | ||
RUN apt-get update -y | ||
RUN apt install -y build-essential | ||
RUN apt-get install -y python3-dev | ||
RUN apt-get install -y build-essential | ||
WORKDIR /code | ||
ADD requirements.txt /code | ||
RUN pip install -r requirements.txt | ||
COPY ansible.cfg /etc/ansible/ | ||
ADD requirements.yml /code | ||
ADD ansible.cfg /etc/ansible/ | ||
RUN ansible-galaxy install -r requirements.yml | ||
ADD . /code | ||
WORKDIR /code/VirtualMachineService |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.