mirror of
https://github.com/agresdominik/predictify.git
synced 2026-04-21 17:55:49 +00:00
25 lines
436 B
Docker
25 lines
436 B
Docker
FROM alpine:latest
|
|
|
|
WORKDIR /root
|
|
|
|
RUN apk update && \
|
|
apk add --no-cache \
|
|
openssh \
|
|
python3 \
|
|
py3-pip \
|
|
sqlite
|
|
|
|
EXPOSE 22
|
|
|
|
RUN mkdir /root/src
|
|
|
|
COPY ./startup.sh /root
|
|
COPY ./requirements.txt /root
|
|
COPY ./src/ /root/src/
|
|
|
|
RUN ls -la
|
|
|
|
VOLUME /root
|
|
|
|
ENTRYPOINT ["/bin/sh", "/root/startup.sh"]
|