mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
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/*
|