Last active
          February 21, 2023 18:21 
        
      - 
      
- 
        Save joseabraham/1ea632912805c330bf72002c015a83d7 to your computer and use it in GitHub Desktop. 
Revisions
- 
        joseabraham renamed this gist Feb 21, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewingFile renamed without changes.
- 
        joseabraham revised this gist Feb 21, 2023 . No changes.There are no files selected for viewing
- 
        joseabraham renamed this gist Feb 21, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewingFile renamed without changes.
- 
        joseabraham created this gist Feb 21, 2023 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ FROM node:alpine # Create app directory WORKDIR /usr/src/app # ENV LANG es_ES.UTF-8 # ENV LC_ALL es_ES.UTF-8 # ENV LANGUAGE es_ES.UTF-8 # ENV TZ America/Bogota RUN apk add git RUN apk add chromium COPY package*.json ./ RUN yarn # Bundle app source COPY . . RUN yarn run build # Create app directory WORKDIR /usr/src/app EXPOSE 3300 CMD [ "yarn", "run","start" ]