This 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 characters
############################################################################### | |
# Step 1 : NPM Builder image | |
# | |
FROM node:lts-alpine AS npm-builder | |
# Define working directory and copy source | |
WORKDIR /home/node/app | |
COPY ./my_app/package.json ./my_app/modernizr-config.json ./ | |
# Install dependencies and build whatever you have to build | |
RUN apk add --no-cache git |
This 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 characters
package com.volnoboy; | |
import java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.ResultSet; | |
import java.sql.SQLException; | |
import java.sql.Statement; | |
public class H2JDBC { |