2023-10-03 18:31:33 +00:00
|
|
|
FROM rust:latest
|
2023-09-24 13:56:01 +00:00
|
|
|
|
2023-10-03 18:31:33 +00:00
|
|
|
WORKDIR /app
|
2023-09-24 13:56:01 +00:00
|
|
|
|
2023-11-04 03:41:12 +00:00
|
|
|
RUN apt-get update && apt-get -y install wget && \
|
2024-01-16 00:03:44 +00:00
|
|
|
wget https://files.ivanch.me/api/public/dl/ch3NV0P8/small-image.png && \
|
|
|
|
wget https://files.ivanch.me/api/public/dl/jNlXYMLR/big-image.png && \
|
|
|
|
wget https://files.ivanch.me/api/public/dl/QdKvaeQI/video.mp4 && \
|
|
|
|
wget https://files.ivanch.me/api/public/dl/YD4vmSsO/nginx.html && \
|
2023-09-24 13:56:01 +00:00
|
|
|
|
2023-10-03 18:31:33 +00:00
|
|
|
COPY . .
|
2023-09-24 13:56:01 +00:00
|
|
|
|
2023-10-03 18:31:33 +00:00
|
|
|
RUN cargo build --release && \
|
|
|
|
cp ./target/release/ActixAPI . && \
|
|
|
|
mv small-image.png ./static && \
|
|
|
|
mv big-image.png ./static && \
|
|
|
|
mv video.mp4 ./static && \
|
2023-10-27 01:33:28 +00:00
|
|
|
mv nginx.html ./static && \
|
2023-10-03 18:31:33 +00:00
|
|
|
ldconfig /usr/local/lib
|
2023-09-24 13:56:01 +00:00
|
|
|
|
2023-10-03 18:31:33 +00:00
|
|
|
ENV LD_LIBRARY_PATH=/usr/local/lib
|
2023-09-24 13:56:01 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["./ActixAPI"]
|