lemmy/docker/dev/Dockerfile

52 lines
1.3 KiB
Docker
Raw Normal View History

FROM node:10-jessie as node
2019-08-29 02:26:42 +00:00
2019-04-10 04:45:10 +00:00
WORKDIR /app/ui
2019-04-17 23:55:57 +00:00
# Cache deps
2019-04-17 23:55:57 +00:00
COPY ui/package.json ui/yarn.lock ./
RUN yarn install --pure-lockfile
# Build
2019-04-17 23:55:57 +00:00
COPY ui /app/ui
2019-04-10 04:45:10 +00:00
RUN yarn build
FROM rust:1.38 as rust
# Install musl
RUN apt-get update
RUN apt-get install musl-tools -y
RUN rustup target add x86_64-unknown-linux-musl
2019-04-10 18:10:57 +00:00
# Cache deps
2019-04-10 18:10:57 +00:00
WORKDIR /app
RUN USER=root cargo new server
2019-04-09 22:33:49 +00:00
WORKDIR /app/server
2019-04-10 18:10:57 +00:00
COPY server/Cargo.toml server/Cargo.lock ./
RUN mkdir -p ./src/bin \
&& echo 'fn main() { println!("Dummy") }' > ./src/bin/main.rs
RUN RUSTFLAGS=-Clinker=musl-gcc cargo build --release --target=x86_64-unknown-linux-musl
RUN rm -f ./target/x86_64-unknown-linux-musl/release/deps/lemmy_server*
2019-04-10 18:10:57 +00:00
COPY server/src ./src/
COPY server/migrations ./migrations/
# build for release
RUN RUSTFLAGS=-Clinker=musl-gcc cargo build --frozen --release --target=x86_64-unknown-linux-musl
2019-04-10 18:10:57 +00:00
2019-04-21 23:37:54 +00:00
# Get diesel-cli on there just in case
2019-04-24 17:33:17 +00:00
# RUN cargo install diesel_cli --no-default-features --features postgres
2019-04-21 23:37:54 +00:00
2019-08-29 02:26:42 +00:00
FROM alpine:3.10
# Install libpq for postgres
RUN apk add libpq
# Copy resources
COPY --from=rust /app/server/target/x86_64-unknown-linux-musl/release/lemmy_server /app/lemmy
COPY --from=node /app/ui/dist /app/dist
RUN addgroup -g 1000 lemmy
RUN adduser -D -s /bin/sh -u 1000 -G lemmy lemmy
RUN chown lemmy:lemmy /app/lemmy
USER lemmy
EXPOSE 8536
CMD ["/app/lemmy"]