mirror of
https://github.com/OMGeeky/twba.uploader.git
synced 2026-02-23 15:49:58 +01:00
docker deployment
This commit is contained in:
@@ -1 +1 @@
|
|||||||
/target
|
target
|
||||||
|
|||||||
53
.run/Dockerfile.run.xml
Normal file
53
.run/Dockerfile.run.xml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<component name="ProjectRunConfigurationManager">
|
||||||
|
<configuration default="false" name="Dockerfile" type="docker-deploy" factoryName="dockerfile" server-name="Docker">
|
||||||
|
<deployment type="dockerfile">
|
||||||
|
<settings>
|
||||||
|
<option name="imageTag" value="twba-uploader" />
|
||||||
|
<option name="buildArgs">
|
||||||
|
<list>
|
||||||
|
<DockerEnvVarImpl>
|
||||||
|
<option name="name" value="PROGNAME" />
|
||||||
|
<option name="value" value="twba-uploader" />
|
||||||
|
</DockerEnvVarImpl>
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
<option name="buildKitEnabled" value="true" />
|
||||||
|
<option name="containerName" value="twba-uploader" />
|
||||||
|
<option name="envVars">
|
||||||
|
<list>
|
||||||
|
<DockerEnvVarImpl>
|
||||||
|
<option name="name" value="TWBA_CONFIG" />
|
||||||
|
<option name="value" value="/twba/configs/config.toml" />
|
||||||
|
</DockerEnvVarImpl>
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
<option name="commandLineOptions" value="--restart=unless-stopped" />
|
||||||
|
<option name="showCommandPreview" value="true" />
|
||||||
|
<option name="sourceFilePath" value="Dockerfile" />
|
||||||
|
<option name="volumeBindings">
|
||||||
|
<list>
|
||||||
|
<DockerVolumeBindingImpl>
|
||||||
|
<option name="containerPath" value="/twba/configs/" />
|
||||||
|
<option name="hostPath" value="/twba/" />
|
||||||
|
<option name="readOnly" value="true" />
|
||||||
|
</DockerVolumeBindingImpl>
|
||||||
|
<DockerVolumeBindingImpl>
|
||||||
|
<option name="containerPath" value="/twba/tmp/" />
|
||||||
|
<option name="hostPath" value="/var/tmp/twba/" />
|
||||||
|
</DockerVolumeBindingImpl>
|
||||||
|
<DockerVolumeBindingImpl>
|
||||||
|
<option name="containerPath" value="/twba/data/" />
|
||||||
|
<option name="hostPath" value="/twba/data/" />
|
||||||
|
</DockerVolumeBindingImpl>
|
||||||
|
<DockerVolumeBindingImpl>
|
||||||
|
<option name="containerPath" value="/etc/ssl/certs" />
|
||||||
|
<option name="hostPath" value="/etc/ssl/certs" />
|
||||||
|
<option name="readOnly" value="true" />
|
||||||
|
</DockerVolumeBindingImpl>
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</settings>
|
||||||
|
</deployment>
|
||||||
|
<method v="2" />
|
||||||
|
</configuration>
|
||||||
|
</component>
|
||||||
105
Dockerfile
105
Dockerfile
@@ -1,73 +1,44 @@
|
|||||||
# syntax=docker/dockerfile:1
|
FROM lukemathwalker/cargo-chef:latest-rust-1 AS chef
|
||||||
|
|
||||||
# Comments are provided throughout this file to help you get started.
|
|
||||||
# If you need more help, visit the Dockerfile reference guide at
|
|
||||||
# https://docs.docker.com/engine/reference/builder/
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# Create a stage for building the application.
|
|
||||||
|
|
||||||
ARG RUST_VERSION=1.73.0
|
|
||||||
ARG APP_NAME=uploader
|
|
||||||
FROM rust:${RUST_VERSION}-slim-bullseye AS build
|
|
||||||
ARG APP_NAME
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get install -y pkg-config
|
|
||||||
RUN apt-get install -y libssl-dev
|
|
||||||
RUN apt-get install -y libudev-dev
|
|
||||||
RUN apt-get install -y git
|
|
||||||
# Build the application.
|
|
||||||
# Leverage a cache mount to /usr/local/cargo/registry/
|
|
||||||
# for downloaded dependencies and a cache mount to /app/target/ for
|
|
||||||
# compiled dependencies which will speed up subsequent builds.
|
|
||||||
# Leverage a bind mount to the src directory to avoid having to copy the
|
|
||||||
# source code into the container. Once built, copy the executable to an
|
|
||||||
# output directory before the cache mounted /app/target is unmounted.
|
|
||||||
RUN --mount=type=bind,source=src,target=src \
|
|
||||||
--mount=type=bind,source=Cargo.toml,target=Cargo.toml \
|
|
||||||
--mount=type=bind,source=Cargo.lock,target=Cargo.lock \
|
|
||||||
--mount=type=bind,source=.cargo/config.toml,target=.cargo/config.toml \
|
|
||||||
--mount=type=cache,target=/app/target/ \
|
|
||||||
--mount=type=cache,target=/usr/local/cargo/registry/ \
|
|
||||||
# --mount=type=bind,source=migrations,target=migrations \
|
|
||||||
<<EOF
|
|
||||||
set -e
|
|
||||||
cargo build --locked --release
|
|
||||||
cp ./target/release/$APP_NAME /bin/server
|
|
||||||
EOF
|
|
||||||
|
|
||||||
################################################################################
|
FROM chef AS planner
|
||||||
# Create a new stage for running the application that contains the minimal
|
COPY /src ./src
|
||||||
# runtime dependencies for the application. This often uses a different base
|
COPY /Cargo.toml .
|
||||||
# image from the build stage where the necessary files are copied from the build
|
COPY /Cargo.lock .
|
||||||
# stage.
|
RUN cargo chef prepare --recipe-path recipe.json
|
||||||
#
|
|
||||||
# The example below uses the debian bullseye image as the foundation for running the app.
|
|
||||||
# By specifying the "bullseye-slim" tag, it will also use whatever happens to be the
|
|
||||||
# most recent version of that tag when you build your Dockerfile. If
|
|
||||||
# reproducability is important, consider using a digest
|
|
||||||
# (e.g., debian@sha256:ac707220fbd7b67fc19b112cee8170b41a9e97f703f588b2cdbbcdcecdd8af57).
|
|
||||||
FROM debian:bullseye-slim AS final
|
|
||||||
|
|
||||||
RUN apt-get update
|
FROM chef AS builder
|
||||||
RUN apt-get install -y ca-certificates
|
COPY --from=planner /app/recipe.json recipe.json
|
||||||
|
# Build dependencies - this is the caching Docker layer!
|
||||||
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
||||||
|
--mount=type=cache,target=/home/root/app/target \
|
||||||
|
cargo chef cook --release --locked --recipe-path recipe.json
|
||||||
|
# Build application
|
||||||
|
COPY /src ./src
|
||||||
|
COPY /Cargo.toml .
|
||||||
|
COPY /Cargo.lock .
|
||||||
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
||||||
|
--mount=type=cache,target=/home/root/app/target \
|
||||||
|
cargo build --release --locked
|
||||||
|
|
||||||
# Create a non-privileged user that the app will run under.
|
# We do not need the Rust toolchain to run the binary!
|
||||||
# See https://docs.docker.com/develop/develop-images/dockerfile_best-practices/ #user
|
FROM debian:bookworm AS runtime
|
||||||
#ARG UID=10001
|
WORKDIR /app
|
||||||
#RUN adduser \
|
ARG PROGNAME
|
||||||
# --disabled-password \
|
RUN apt-get update && apt-get install -y libssl-dev coreutils
|
||||||
# --gecos "" \
|
# Create a script to run the command and sleep for one hour after the command is done
|
||||||
# --home "/nonexistent" \
|
RUN echo "#!/bin/bash \n \
|
||||||
# --shell "/sbin/nologin" \
|
echo \"Running command: '$PROGNAME'\" \n \
|
||||||
# --no-create-home \
|
# Run your command \n \
|
||||||
# --uid "${UID}" \
|
$PROGNAME \n \
|
||||||
# appuser
|
echo \"Done with normal command. Sleeping for one hour\" \n \
|
||||||
#USER appuser
|
# Sleep for one hour \n \
|
||||||
|
sleep 3600 \n \
|
||||||
|
echo \"Done with sleep. Exiting\" \
|
||||||
|
" > /app/entrypoint.sh
|
||||||
|
|
||||||
# Copy the executable from the "build" stage.
|
# Make the script executable
|
||||||
COPY --from=build /bin/server /bin/
|
RUN chmod +x /app/entrypoint.sh
|
||||||
|
COPY --from=builder /app/target/release/$PROGNAME /usr/local/bin/$PROGNAME
|
||||||
|
|
||||||
# What the container should run when it is started.
|
CMD ["/app/entrypoint.sh"]
|
||||||
CMD ["/bin/server"]
|
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ lazy_static! {
|
|||||||
)
|
)
|
||||||
.file("./settings.toml")
|
.file("./settings.toml")
|
||||||
.file(shellexpand::tilde("~/twba/config.toml").into_owned())
|
.file(shellexpand::tilde("~/twba/config.toml").into_owned())
|
||||||
|
.file(std::env::var("TWBA_CONFIG").unwrap_or_else(|_| "~/twba/config.toml".to_string()))
|
||||||
.load()
|
.load()
|
||||||
.map_err(|e| UploaderError::LoadConfig(e.into()))
|
.map_err(|e| UploaderError::LoadConfig(e.into()))
|
||||||
.expect("Failed to load config");
|
.expect("Failed to load config");
|
||||||
|
|||||||
Reference in New Issue
Block a user