mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
57d12dfb17
GitOrigin-RevId: 4b613ea3973cb7944c3d414ea91bcf367dbf50a6
8 lines
413 B
Docker
8 lines
413 B
Docker
FROM node:18.20.4
|
|
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
|
|
&& echo \
|
|
"deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/debian $(. /etc/os-release && echo "$VERSION_CODENAME") stable" \
|
|
> /etc/apt/sources.list.d/docker.list \
|
|
&& apt-get update \
|
|
&& apt-get install -y docker-ce-cli docker-compose-plugin \
|
|
&& rm -rf /var/lib/apt/lists/*
|