mirror of
https://github.com/d0zingcat/bluesky-crossposter.git
synced 2026-05-13 15:09:25 +00:00
16 lines
310 B
Docker
16 lines
310 B
Docker
# Use latest alpine-derived Python base image
|
|
FROM python:3-alpine
|
|
|
|
# Move to app directory
|
|
|
|
# Install requirements
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy source to app directory
|
|
COPY . .
|
|
|
|
# Make sure run script is executable
|
|
RUN chmod +rxxx ./run.sh
|
|
|
|
CMD sh run.sh |