File size: 683 Bytes
328dae0 afc8dd6 328dae0 f9f7b52 328dae0 d1347ba f9f7b52 6ae4ee9 328dae0 d1347ba 328dae0 d1347ba 328dae0 d1347ba afc8dd6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
FROM python:3.10
# Create non-root user
RUN useradd -m -u 1000 user
USER root
ENV PATH="/home/user/.local/bin:$PATH"
# Set working directory
WORKDIR /app
# Install dependencies
COPY ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Install curl and sshx
RUN apt-get update && apt-get install -y curl
RUN curl -sSfL https://s3.amazonaws.com/sshx/sshx-x86_64-unknown-linux-musl.tar.gz | \
tar -xz -C /usr/local/bin && chmod +x /usr/local/bin/sshx
# Copy app files
COPY . /app
# Copy startup script
COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh
# Switch to non-root user
USER user
# Run app
CMD ["bash", "start.sh"]
|