mirror of
https://github.com/ansible/awx.git
synced 2026-02-03 02:28:12 -03:30
Updating docker dev workflow
* Moving to new docker compose file format * Adding some things that will be needed for python dependencies
This commit is contained in:
10
tools/docker-compose/Dockerfile-sync
Normal file
10
tools/docker-compose/Dockerfile-sync
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM ubuntu:16.04
|
||||
|
||||
RUN PACKAGES="\
|
||||
rsync \
|
||||
lsyncd \
|
||||
" && \
|
||||
apt-get update && \
|
||||
apt-get install -y $PACKAGES && \
|
||||
apt-get autoremove --purge -y && \
|
||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
Reference in New Issue
Block a user