Skip to content
Snippets Groups Projects
Dockerfile 418 B
Newer Older
  • Learn to ignore specific revisions
  • jonezy35's avatar
    jonezy35 committed
    ###################################################
    
    # This Dockerfile is used by the docker-compose.yml
    
    jonezy35's avatar
    jonezy35 committed
    # file to build the development container.
    # Do not make any changes here unless you know what
    # you are doing.
    ###################################################
    
    
    FROM node:18-bullseye as dev
    
    jonezy35's avatar
    jonezy35 committed
    RUN apt-get update -y && apt-get upgrade -y && apt-get install -y openssl
    WORKDIR /app
    
    CMD ["sh", "./bin/docker-start"]