mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-07 03:20:25 +00:00
a074564458
* Asyncify more * I guess these changed * Clean PR a bit * Convert more away from failure error * config changes for testing federation * It was DNS So actix-web's client relies on TRust DNS Resolver to figure out where to send data, but TRust DNS Resolver seems to not play nice with docker, which expressed itself as not resolving the name to an IP address _the first time_ when making a request. The fix was literally to make the request again (which I limited to 3 times total, and not exceeding the request timeout in total) * Only retry for connecterror Since TRust DNS Resolver was causing ConnectError::Timeout, this change limits the retry to only this error, returning immediately for any other error * Use http sig norm 0.4.0-alpha for actix-web 3.0 support * Blocking function, retry http requests * cargo +nightly fmt * Only create one pictrs dir * Don't yarn build * cargo +nightly fmt
18 lines
456 B
Docker
Vendored
18 lines
456 B
Docker
Vendored
FROM ekidd/rust-musl-builder:1.42.0-openssl11
|
|
|
|
USER root
|
|
RUN mkdir /app/dist/documentation/ -p \
|
|
&& addgroup --gid 1001 lemmy \
|
|
&& adduser --gecos "" --disabled-password --shell /bin/sh -u 1001 --ingroup lemmy lemmy
|
|
|
|
# Copy resources
|
|
COPY server/config/defaults.hjson /app/config/defaults.hjson
|
|
COPY ui/dist /app/dist
|
|
COPY server/target/debug/lemmy_server /app/lemmy
|
|
|
|
RUN chown lemmy:lemmy /app/ -R
|
|
USER lemmy
|
|
EXPOSE 8536
|
|
WORKDIR /app
|
|
CMD ["/app/lemmy"]
|