mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-01 15:40:16 +00:00
d5d99fa3b9
* Moving docs to join.lemmy.ml . Fixes #1396 * Removing submodule fetch from drone.
30 lines
638 B
Docker
30 lines
638 B
Docker
# syntax=docker/dockerfile:experimental
|
|
FROM rust:1.47-buster as rust
|
|
|
|
ENV HOME=/home/root
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy the source folders
|
|
COPY . ./
|
|
|
|
# Build for debug
|
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/app/target \
|
|
cargo build
|
|
RUN --mount=type=cache,target=/app/target \
|
|
cp target/debug/lemmy_server lemmy_server
|
|
|
|
FROM ubuntu:20.10
|
|
|
|
# Install libpq for postgres and espeak
|
|
RUN apt-get update -y
|
|
RUN apt-get install -y libpq-dev espeak
|
|
|
|
# Copy resources
|
|
COPY config/defaults.hjson /config/defaults.hjson
|
|
COPY --from=rust /app/lemmy_server /app/lemmy
|
|
|
|
EXPOSE 8536
|
|
CMD ["/app/lemmy"]
|