This file contains 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 characters
var regions = { | |
nordeste: [71, 73, 74, 75, 77, 79, 81, 82, 83, 85, 86, 87, 88, 89], | |
norte: [63, 68, 69, 84, 91, 92, 93, 94, 95, 96, 97, 98, 99], | |
centroeste: [61, 62, 64, 65, 66, 67], | |
sul: [41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 53, 54, 55], | |
sudeste: [11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 24, 27, 28, 31, 32, 33, 34, 35, 37, 38] | |
}; |
This file contains 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 characters
sudo /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 && \ | |
sudo /sbin/mkswap /var/swap.1 && \ | |
sudo chmod 600 /var/swap.1 && \ | |
sudo /sbin/swapon /var/swap.1 |
This file contains 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 characters
FROM oraclelinux | |
RUN yum install -y oracle-nodejs-release-el7 oracle-release-el7 && yum install -y node-oracledb-node10 | |
RUN npm i -g yarn | |
RUN echo /usr/lib/oracle/18.3/client64/lib > /etc/ld.so.conf.d/oracle-instantclient.conf | |
RUN ldconfig | |
ADD package.json /tmp/package.json | |
RUN cd /tmp && yarn |
OlderNewer