mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-07 14:32:57 -04:00
9 lines
155 B
Text
9 lines
155 B
Text
FROM amazonlinux:1
|
|
|
|
WORKDIR /opt/app
|
|
|
|
ADD requirements.txt .
|
|
|
|
RUN \
|
|
yum install -y python27-pip && \
|
|
pip install --target=/opt/app -r requirements.txt
|