mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00

* fix: modify the base docker image for devcontainer * fix: restore package-lock.json from main
5 lines
141 B
Docker
5 lines
141 B
Docker
FROM node:18-bullseye
|
|
|
|
RUN useradd -m -s /bin/bash vscode
|
|
RUN mkdir -p /workspaces && chown -R vscode:vscode /workspaces
|
|
WORKDIR /workspaces
|