mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
20fe9e9614
* Moving to new docker compose file format * Adding some things that will be needed for python dependencies
11 lines
230 B
Plaintext
11 lines
230 B
Plaintext
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/*
|