Added Dev Container (#1023)

This commit is contained in:
jonezy35
2023-05-11 09:55:53 -04:00
committed by GitHub
parent e4e9267c08
commit 54c8d5b7b8
5 changed files with 58 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
###################################################
# This Dockerfile is used by the docker-compose.yml
# file to build the development container.
# Do not make any changes here unless you know what
# you are doing.
###################################################
FROM node:16-bullseye as dev
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y openssl
WORKDIR /app
CMD ["sh", "./docker-start.sh"]