mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-18 21:31:37 +03:00
11 lines
252 B
Docker
11 lines
252 B
Docker
FROM node:18-bookworm-slim
|
|
|
|
COPY ./apps/server /app
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends openssl && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["node", "--es-module-specifier-resolution=node", "./dist/index.js"]
|